Skip to main content

Folder Structure

This page provides an overview of the project structure of a Catalyst app. It covers top-level files and folders, configuration files, and routing conventions.


Top Level Folders

Top-level folders are used to organize your application’s code:

FoldersPurpose
configcontains configuration keys for the project (environment variables for server and client)
srcSource code for application
clientEntry point for client app
serverSource code for server (middlewares, controllers, apis etc.)
buildcontains bundled code (this folder is generated after application is built.)

Configuration Files

Configuration files are used to configure your application, manage routing, assets, state management, and middlewares on the server.

FilesPurpose
config/config.jsonContains configuration keys for the project (environment variables for server and client)
.gitignoreFiles to be ignored by git
src/js/routes/index.jsList of routes
src/js/store/index.jsRedux Store (optional)
client/index.jsEntry point for client App
server/document.jsDocument generated from server
server/index.jsScripts that run before server is started (if any)
server/server.jsMiddlewares on server
src/static/cssGlobal css
src/static/fontsGlobal fonts